001    /***********************************************************************************************
002     *              Tekijä:                 Jukka Salminen
003     *              Opiskelijanumero:       i79947
004     *              Email:                  jukka.salminen@uwasa.fi
005     *              Tekoaika:               23.9.2002
006     *              Kurssi/vuosi:           Ohjelmoinnin jatkokurssi/kevät 2002
007     *              Työn tunnus:            Harjoitustyö: Taulukkoeditori web-sivulle
008     ***********************************************************************************************
009     * JSPanel-luokka
010     *====================
011     * Kaikkien lomakkeella olevien Panel-olioiden yliluokka.
012     * Ei varsinaiseti tee mitään.
013     */
014    
015    package classes;
016    
017    /**
018     *
019     * @author  Jukka
020     */
021    public abstract class JSPanel extends javax.swing.JPanel {
022    
023            String m_sName;
024            
025            /** Creates new form JSPanel */
026        public JSPanel() {
027            initComponents();
028        }
029    
030        /** This method is called from within the constructor to
031         * initialize the form.
032         * WARNING: Do NOT modify this code. The content of this method is
033         * always regenerated by the Form Editor.
034         */
035            private void initComponents()//GEN-BEGIN:initComponents
036            {
037                    
038            }//GEN-END:initComponents
039    
040    
041            // Variables declaration - do not modify//GEN-BEGIN:variables
042            // End of variables declaration//GEN-END:variables
043    
044    }